#Open rx project in RPG Maker, Open Script Editor (F11), Go to "SaveData" section on left pane, copy paste below sections over respective section in 
#RPG Maker

module SaveData
  # Contains the file path of the save file.
  FILE_PATH = File.join(Dir.pwd, "Saves", "Game.rxdata")

  # Ensure the Saves folder exists
  Dir.mkdir(File.dirname(FILE_PATH)) unless File.directory?(File.dirname(FILE_PATH))


